iT邦幫忙

0

用python下載東西

  • 分享至 

  • xImage
  •  

其實不用安裝requests就可以下載東西
python的urllib.request.urlopen會傳回一個<http.client.HTTPResponse object>
類似c語言的FILE*或python的open(filename, mode)
以下是簡單的下載方式

import urllib.request
import webbrowser, os
a=urllib.request.urlopen(input('url='))
p=os.path.abspath(input("save as_"))
f=open(p, 'wb')
f.write(a.read())
print("successfully saved at", p)
webbrowser.open(p)

若輸入https://python.org/ 會把html下載起來
我用這方法下載pycharm-edu.exe 約要半小時多
-https://download-cdn.jetbrains.com/python/pycharm-edu-2021.1.exe
我也下載Dev-cpp 很快就下載好了
-https://nchc.dl.sourceforge.net/project/orwelldevcpp/Setup%20Releases/Dev-Cpp%205.11%20TDM-GCC%204.9.2%20Setup.exe
sublime Text 4
-https://download.sublimetext.com/sublime_text_build_4107_x64_setup.exe
Object-Oriented Programming With ANSI-C
-https://www.cs.rit.edu/~ats/books/ooc.pdf
a.length可以知道大小 但是下載html時會失敗


圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言